home *** CD-ROM | disk | FTP | other *** search
/ AmigActive 10 / AACD 10.iso / AACD / Resources / Online / Miami / MiamiSDK / netinclude / machine / types.h < prev   
C/C++ Source or Header  |  1997-12-04  |  409b  |  18 lines

  1. #ifndef    _MACHINE_TYPES_H_
  2. #define    _MACHINE_TYPES_H_
  3.  
  4. /*
  5.  * Basic integral types.  Omit the typedef if
  6.  * not possible for a machine/compiler combination.
  7.  */
  8. typedef    signed char           int8_t;
  9. typedef    unsigned char         u_int8_t;
  10. typedef    short              int16_t;
  11. typedef    unsigned short        u_int16_t;
  12. typedef    long              int32_t;
  13. typedef    unsigned long        u_int32_t;
  14.  
  15. typedef    int32_t            register_t;
  16.  
  17. #endif    /* _MACHINE_TYPES_H_ */
  18.